home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000010_news@columbia.edu _Tue Jul 27 09:37:28 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA03269
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 27 Jul 1999 09:37:28 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA28286
  7.     for kermit.misc@watsun.cc.columbia.edu; Tue, 27 Jul 1999 09:37:21 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Flow control ???
  11. Date: 27 Jul 1999 13:37:21 GMT
  12. Organization: Columbia University
  13. Message-ID: <7nkcmh$rjr$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <379d8dad.1654463@news.deakin.edu.au>,
  17.  <drhodes@deakin.edu.au> wrote:
  18. : I am having a problem between a Linux 2.0.1 server and a 2400 baud
  19. : modem. In kermit I am setting the port speed to 2400 and setting the
  20. : handshaking to the required xon/xoff (which the dial up server
  21. : requires). Also parity is set to none.  
  22. : I then dial out using the standard ATDT commands.
  23. : The modem connects and echos the CONNECT back to the terminal, but
  24. : immediately after this garbage is printed. 
  25. Because you didn't get a 2400 bps connection.  Probably the full message
  26. was CONNECT 1200.  Immediately after printing this message, the modem
  27. changed its interface speed to 1200.
  28.  
  29. : Can any-one suggest something I may be doing wrong?  Do I have to
  30. : program the modem to use xon/xoff or is this done when using the set
  31. : handshaking on command.
  32. Use C-Kermit's DIAL command instead of sending AT commands to the modem.
  33. The DIAL command handles this situation automatically:
  34.  
  35.   set modem type hayes-2400  ; Tell Kermit what kind of modem you have
  36.   set line /dev/cua          ; Specify the device
  37.   set speed 2400             ; Specify the speed
  38.   set dial display on        ; Watch the Kermit/Modem dialog
  39.   dial 7654321               ; (replace with actual number)
  40.  
  41. The DIAL command is discussed in Chapter 5 of "Using C-Kermit".
  42.  
  43. Find current releases of C-Kermit at:
  44.  
  45.   http://www.columbia.edu/kermit/
  46.  
  47. as well as information about manuals, script samples, etc.  And if, by
  48. chance, you are trying to send a page, please see:
  49.  
  50.   http://www.columbia.edu/kermit/pagers.html
  51.  
  52. - Frank